home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 076-100 / disk_097 / graphit / bugreport.1751 < prev    next >
Text File  |  1992-05-06  |  2KB  |  46 lines

  1. Article 1751 of comp.sys.amiga:
  2. Path: mcdsun!noao!hao!hplabs!decwrl!labrea!navajo!ali
  3. From: ali@navajo.STANFORD.EDU (Ali Ozer)
  4. Newsgroups: comp.sys.amiga
  5. Subject: Graph-it.
  6. Message-ID: <1344@navajo.STANFORD.EDU>
  7. Date: 28 Jan 87 02:13:24 GMT
  8. Reply-To: ali@navajo.ARPA (Ali Ozer)
  9. Distribution: world
  10. Organization: Stanford University
  11. Lines: 31
  12.  
  13. [I actually posted this message a few days ago from another 
  14.  machine but with distribution "local," how dum of me... :-( ]
  15.  
  16. I got the "graph-it" program from the net, downloaded and ran it...
  17. Neat program! I played around with the 3d stuff and actually got some wild
  18. 3d surfaces... But, as you say, the program acts like it is 90% complete;
  19. I got a guru rather quickly. Also, in case you're not aware:
  20.  
  21. - In one of the files you refer to "PI". I'm compiling with 3.30e, but
  22.   there was no reference to PI anywhere. So I had to add it to graph.h.
  23.  
  24. - In three-d.c, your use of InitTmpRas() is wrong. You try to use it as a 
  25.   function; but InitTmpRas does not return a value. You need to do something
  26.   along the lines of the following:
  27.  
  28.     InitTmpRas (&tmpras, ..., ...);
  29.     Window->RPort->Tmpras = &tmpras;
  30.  
  31.   Manx would not compile and kept on complaining about illegal type 
  32.   conversion. Didn't it complain for anyone else?
  33.  
  34. - Finally, your use of window sizing verification causes deadlocks. For
  35.   example, I hit the [Y=] icon to enter a command, then clicked the resize
  36.   gadget for the main window. The program hung; seems like at that stage you
  37.   are waiting for a command from the command window. But the command window
  38.   is inactive, and the mouse is stuck on the resize gadget of the other
  39.   window! 
  40.  
  41. Thanks for the posting! I'll be looking forward to further releases...
  42.  
  43. Ali Ozer, ali@navajo.stanford.edu
  44.  
  45.  
  46.